agentmux_srv\backend\storage/
mod.rs

1// Copyright 2025-2026, AgentMux Corp.
2// SPDX-License-Identifier: Apache-2.0
3
4//! Storage layer: SQLite-backed object store and file store.
5//! Port of Go's pkg/wstore and pkg/filestore.
6
7pub mod agents_consolidate;
8pub mod error;
9pub mod filestore;
10pub mod migrations;
11pub mod wstore;
12
13pub use error::StoreError;
14pub use wstore::AgentDefinition;
15pub use wstore::AgentContent;
16#[allow(unused_imports)]
17pub use wstore::AgentHistory;
18pub use wstore::AgentSkill;